from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

81951

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-11-06
cache_tab - 1.0.33
Ebuild name:

dev-erlang/cache_tab-1.0.33

Description

In-memory cache Erlang and Elixir library

Added to portage

2025-11-06

cutlass - 4.1.0
Ebuild name:

dev-libs/cutlass-4.1.0

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

cutlass - 4.2.1
Ebuild name:

dev-libs/cutlass-4.2.1

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

eimp - 1.0.26
Ebuild name:

dev-erlang/eimp-1.0.26

Description

Erlang Image Manipulation Process

Added to portage

2025-11-06

ejabberd - 25.10
Ebuild name:

net-im/ejabberd-25.10

Description

Robust, scalable and extensible XMPP server

Added to portage

2025-11-06

esip - 1.0.59
Ebuild name:

dev-erlang/esip-1.0.59

Description

ProcessOne SIP server component

Added to portage

2025-11-06

ezlib - 1.0.15
Ebuild name:

dev-erlang/ezlib-1.0.15

Description

Native zlib driver for Erlang and Elixir

Added to portage

2025-11-06

fast_tls - 1.1.25
Ebuild name:

dev-erlang/fast_tls-1.1.25

Description

TLS/SSL native driver for Erlang and Elixir

Added to portage

2025-11-06

fast_xml - 1.1.57
Ebuild name:

dev-erlang/fast_xml-1.1.57

Description

Fast Expat based Erlang XML parsing library

Added to portage

2025-11-06

fast_yaml - 1.0.39
Ebuild name:

dev-erlang/fast_yaml-1.0.39

Description

Fast Yaml native library for Erlang and Elixir

Added to portage

2025-11-06

iscan - 2.30.4.2-r5
Ebuild name:

media-gfx/iscan-2.30.4.2-r5

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan - 2.30.4.2-r6
Ebuild name:

media-gfx/iscan-2.30.4.2-r6

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan-plugin-gt-f500 - 1.0.0.1-r2
Ebuild name:

media-gfx/iscan-plugin-gt-f500-1.0.0.1-r2

Description

Epson Perfection 2480/2580 PHOTO scanner plugin for SANE

Added to portage

2025-11-06

iscan-plugin-gt-f720 - 0.0.1.2-r1
Ebuild name:

media-gfx/iscan-plugin-gt-f720-0.0.1.2-r1

Description

Epson Perfection V300 PHOTO scanner plugin for SANE 'epko

Added to portage

2025-11-06

iscan-plugin-gt-x770 - 2.1.2.1-r4
Ebuild name:

media-gfx/iscan-plugin-gt-x770-2.1.2.1-r4

Description

Epson Perfection V500 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

iscan-plugin-gt-x820 - 2.2.0.1-r1
Ebuild name:

media-gfx/iscan-plugin-gt-x820-2.2.0.1-r1

Description

Epson Perfection V600 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

jaq - 3.0.0_alpha
Ebuild name:

app-misc/jaq-3.0.0_alpha

Description

Just another JSON query tool

Added to portage

2025-11-06

liblxqt - 2.3.0
Ebuild name:

lxqt-base/liblxqt-2.3.0

Description

Common base library for the LXQt desktop environment

Added to portage

2025-11-06

libqtxdg - 4.3.0
Ebuild name:

dev-libs/libqtxdg-4.3.0

Description

Qt Implementation of XDG Standards

Added to portage

2025-11-06

lximage-qt - 2.3.0
Ebuild name:

media-gfx/lximage-qt-2.3.0

Description

Qt Image Viewer

Added to portage

2025-11-06

lxqt-about - 2.3.0
Ebuild name:

lxqt-base/lxqt-about-2.3.0

Description

LXQt about dialog

Added to portage

2025-11-06

lxqt-admin - 2.3.0
Ebuild name:

lxqt-base/lxqt-admin-2.3.0

Description

LXQt system administration tool

Added to portage

2025-11-06

lxqt-archiver - 1.3.0
Ebuild name:

app-arch/lxqt-archiver-1.3.0

Description

Qt GUI File Archiver

Added to portage

2025-11-06

lxqt-build-tools - 2.3.0
Ebuild name:

dev-util/lxqt-build-tools-2.3.0

Description

LXQt Build Tools

Added to portage

2025-11-06

lxqt-config - 2.3.0
Ebuild name:

lxqt-base/lxqt-config-2.3.0

Description

LXQt system configuration control center

Added to portage

2025-11-06

lxqt-globalkeys - 2.3.0
Ebuild name:

lxqt-base/lxqt-globalkeys-2.3.0

Description

Daemon and library for global keyboard shortcuts registration

Added to portage

2025-11-06

lxqt-menu-data - 2.3.0
Ebuild name:

lxqt-base/lxqt-menu-data-2.3.0

Description

LXQt Menu Files and Translations for Menu Categories

Added to portage

2025-11-06

lxqt-meta - 2.3.0
Ebuild name:

lxqt-base/lxqt-meta-2.3.0

Description

Meta ebuild for LXQt, the Lightweight Desktop Environment

Added to portage

2025-11-06

lxqt-notificationd - 2.3.0
Ebuild name:

lxqt-base/lxqt-notificationd-2.3.0

Description

LXQt notification daemon and library

Added to portage

2025-11-06

lxqt-openssh-askpass - 2.3.0
Ebuild name:

lxqt-base/lxqt-openssh-askpass-2.3.0

Description

LXQt OpenSSH user password prompt tool

Added to portage

2025-11-06

lxqt-panel - 2.3.0
Ebuild name:

lxqt-base/lxqt-panel-2.3.0

Description

LXQt desktop panel and plugins

Added to portage

2025-11-06

lxqt-policykit - 2.3.0
Ebuild name:

lxqt-base/lxqt-policykit-2.3.0

Description

LXQt PolKit authentication agent

Added to portage

2025-11-06

lxqt-powermanagement - 2.3.0
Ebuild name:

lxqt-base/lxqt-powermanagement-2.3.0

Description

LXQt daemon for power management and auto-suspend

Added to portage

2025-11-06

lxqt-qtplugin - 2.3.0
Ebuild name:

lxqt-base/lxqt-qtplugin-2.3.0

Description

LXQt system integration plugin for Qt

Added to portage

2025-11-06

lxqt-runner - 2.3.0
Ebuild name:

lxqt-base/lxqt-runner-2.3.0

Description

LXQt quick launcher

Added to portage

2025-11-06

lxqt-session - 2.3.0
Ebuild name:

lxqt-base/lxqt-session-2.3.0

Description

LXQt Session Manager

Added to portage

2025-11-06

lxqt-sudo - 2.3.0
Ebuild name:

lxqt-base/lxqt-sudo-2.3.0

Description

LXQt GUI frontend for sudo

Added to portage

2025-11-06

lxqt-wayland-session - 0.3.0
Ebuild name:

lxqt-base/lxqt-wayland-session-0.3.0

Description

LXQt Wayland Session Support

Added to portage

2025-11-06

mqtree - 1.0.19
Ebuild name:

dev-erlang/mqtree-1.0.19

Description

Index tree for MQTT topic filters

Added to portage

2025-11-06

p1_acme - 1.0.29
Ebuild name:

dev-erlang/p1_acme-1.0.29

Description

ACME client library for Erlang

Added to portage

2025-11-06

p1_pgsql - 1.1.36
Ebuild name:

dev-erlang/p1_pgsql-1.1.36

Description

Pure Erlang PostgreSQL driver

Added to portage

2025-11-06

p1_utils - 1.0.28
Ebuild name:

dev-erlang/p1_utils-1.0.28

Description

Erlang utility modules from ProcessOne

Added to portage

2025-11-06

pavucontrol-qt - 2.3.0
Ebuild name:

media-sound/pavucontrol-qt-2.3.0

Description

Qt GUI Pulseaudio Mixer

Added to portage

2025-11-06

pinentry - 0.1_p20250408
Ebuild name:

app-emacs/pinentry-0.1_p20250408

Description

GnuPG Pinentry server implementation for Emacs

Added to portage

2025-11-06

qtxdg-tools - 4.3.0
Ebuild name:

app-misc/qtxdg-tools-4.3.0

Description

User Tools from libqtxdg

Added to portage

2025-11-06

stringprep - 1.0.33
Ebuild name:

dev-erlang/stringprep-1.0.33

Description

Fast Stringprep implementation for Erlang and Elixir

Added to portage

2025-11-06

stun - 1.2.21
Ebuild name:

dev-erlang/stun-1.2.21

Description

STUN and TURN library for Erlang and Elixir

Added to portage

2025-11-06

xdg-desktop-portal-lxqt - 1.3.0
Ebuild name:

gui-libs/xdg-desktop-portal-lxqt-1.3.0

Description

Backend implementation for xdg-desktop-portal using Qt/KF5/l

Added to portage

2025-11-06

xmpp - 1.11.2
Ebuild name:

dev-erlang/xmpp-1.11.2

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2025-11-06

yconf - 1.0.22
Ebuild name:

dev-erlang/yconf-1.0.22

Description

YAML configuration processor

Added to portage

2025-11-06

2025-11-05
PEAR-Crypt_GPG - 1.6.11
Ebuild name:

dev-php/PEAR-Crypt_GPG-1.6.11

Description

PHP interface to the GNU Privacy Guard (GnuPG)

Added to portage

2025-11-05

aurorae - 6.5.2
Ebuild name:

kde-plasma/aurorae-6.5.2

Description

Themeable window decoration for KWin

Added to portage

2025-11-05

awesome - 4.3-r104
Ebuild name:

x11-wm/awesome-4.3-r104

Description

Dynamic floating and tiling window manager

Added to portage

2025-11-05

awscli - 1.42.66
Ebuild name:

app-admin/awscli-1.42.66

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-05

bluedevil - 6.5.2
Ebuild name:

kde-plasma/bluedevil-6.5.2

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-11-05

boto3 - 1.40.66
Ebuild name:

dev-python/boto3-1.40.66

Description

The AWS SDK for Python

Added to portage

2025-11-05

botocore - 1.40.66
Ebuild name:

dev-python/botocore-1.40.66

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-05

breeze - 6.5.2
Ebuild name:

kde-plasma/breeze-6.5.2

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-11-05

breeze-grub - 6.5.2
Ebuild name:

kde-plasma/breeze-grub-6.5.2

Description

Breeze theme for GRUB

Added to portage

2025-11-05

breeze-gtk - 6.5.2
Ebuild name:

kde-plasma/breeze-gtk-6.5.2

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-11-05

breeze-plymouth - 6.5.2
Ebuild name:

kde-plasma/breeze-plymouth-6.5.2

Description

Breeze theme for Plymouth

Added to portage

2025-11-05

clang - 21.1.5
Ebuild name:

dev-python/clang-21.1.5

Description

Python bindings for llvm-core/clang

Added to portage

2025-11-05

clang - 21.1.5
Ebuild name:

llvm-core/clang-21.1.5

Description

C language family frontend for LLVM

Added to portage

2025-11-05

clang-common - 21.1.5
Ebuild name:

llvm-core/clang-common-21.1.5

Description

Common files shared between multiple slots of clang

Added to portage

2025-11-05

clang-runtime - 21.1.5
Ebuild name:

llvm-runtimes/clang-runtime-21.1.5

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-11-05

clion - 2025.2.4
Ebuild name:

dev-util/clion-2025.2.4

Description

A complete toolset for C and C++ development

Added to portage

2025-11-05

compiler-rt - 21.1.5
Ebuild name:

llvm-runtimes/compiler-rt-21.1.5

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-11-05

compiler-rt-sanitizers - 21.1.5
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.5

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2025-11-05

delve - 1.25.2
Ebuild name:

dev-go/delve-1.25.2

Description

A source-level debugger for the Go programming language

Added to portage

2025-11-05

discover - 6.5.2
Ebuild name:

kde-plasma/discover-6.5.2

Description

KDE Plasma resources management GUI

Added to portage

2025-11-05

drgn - 0.0.33
Ebuild name:

dev-debug/drgn-0.0.33

Description

Programmable debugger

Added to portage

2025-11-05

drkonqi - 6.5.2
Ebuild name:

kde-plasma/drkonqi-6.5.2

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-11-05

dtrx - 8.7.0
Ebuild name:

app-arch/dtrx-8.7.0

Description

Do The Right eXtraction - extracts archives of different formats

Added to portage

2025-11-05

duplicity - 3.0.6
Ebuild name:

app-backup/duplicity-3.0.6

Description

Secure backup system using gnupg to encrypt data

Added to portage

2025-11-05

fastbencode - 0.3.7
Ebuild name:

dev-python/fastbencode-0.3.7

Description

Implementation of bencode with Rust implementation

Added to portage

2025-11-05

flang - 21.1.5
Ebuild name:

llvm-core/flang-21.1.5

Description

LLVM's Fortran frontend

Added to portage

2025-11-05

flang-rt - 21.1.5
Ebuild name:

llvm-runtimes/flang-rt-21.1.5

Description

LLVM's Fortran runtime

Added to portage

2025-11-05

flask-compress - 1.22
Ebuild name:

dev-python/flask-compress-1.22

Description

Compress responses in your Flask app with gzip

Added to portage

2025-11-05

flatpak-kcm - 6.5.2
Ebuild name:

kde-plasma/flatpak-kcm-6.5.2

Description

Flatpak Permissions Management KCM

Added to portage

2025-11-05

flux - 2.7.3
Ebuild name:

sys-cluster/flux-2.7.3

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2025-11-05

gajim - 2.4.0
Ebuild name:

net-im/gajim-2.4.0

Description

GTK XMPP Client

Added to portage

2025-11-05

gentoolkit - 0.6.11
Ebuild name:

app-portage/gentoolkit-0.6.11

Description

Collection of administration scripts for Gentoo

Added to portage

2025-11-05

glycin-loaders - 2.0.5
Ebuild name:

media-libs/glycin-loaders-2.0.5

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-11-05

gnome-keyring - 48.0-r1
Ebuild name:

gnome-base/gnome-keyring-48.0-r1

Description

Password and keyring managing daemon

Added to portage

2025-11-05

gnome-session - 48.0-r2
Ebuild name:

gnome-base/gnome-session-48.0-r2

Description

Gnome session manager

Added to portage

2025-11-05

gnome-shell - 48.6
Ebuild name:

gnome-base/gnome-shell-48.6

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-11-05

golangci-lint - 2.6.1
Ebuild name:

dev-go/golangci-lint-2.6.1

Description

Fast linters runner for Go

Added to portage

2025-11-05

google-protobuf - 4.33.0
Ebuild name:

dev-ruby/google-protobuf-4.33.0

Description

Protocol Buffers are Google's data interchange format

Added to portage

2025-11-05

i3lock - 2.16
Ebuild name:

x11-misc/i3lock-2.16

Description

Simple screen locker

Added to portage

2025-11-05

imageio - 2.37.2
Ebuild name:

dev-python/imageio-2.37.2

Description

Python library for reading and writing image data

Added to portage

2025-11-05

kactivitymanagerd - 6.5.2
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.2

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-11-05

kde-cli-tools - 6.5.2
Ebuild name:

kde-plasma/kde-cli-tools-6.5.2

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-11-05

kde-cli-tools-common - 6.5.2
Ebuild name:

kde-plasma/kde-cli-tools-common-6.5.2

Description

Added to portage

2025-11-05

kde-gtk-config - 6.5.2
Ebuild name:

kde-plasma/kde-gtk-config-6.5.2

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-11-05

kdecoration - 6.5.2
Ebuild name:

kde-plasma/kdecoration-6.5.2

Description

Plugin based library to create window decorations

Added to portage

2025-11-05

kdeplasma-addons - 6.5.2
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.2

Description

Extra Plasma applets and engines

Added to portage

2025-11-05

kdesu-gui - 6.5.2
Ebuild name:

kde-plasma/kdesu-gui-6.5.2

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-11-05

keditfiletype - 6.5.2
Ebuild name:

kde-plasma/keditfiletype-6.5.2

Description

File Type Editor

Added to portage

2025-11-05

keepassxc - 2.7.10-r2
Ebuild name:

app-admin/keepassxc-2.7.10-r2

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2025-11-05

kgamma - 6.5.2
Ebuild name:

kde-plasma/kgamma-6.5.2

Description

Screen gamma values kcontrol module

Added to portage

2025-11-05

kglobalacceld - 6.5.2
Ebuild name:

kde-plasma/kglobalacceld-6.5.2

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-11-05

kinfocenter - 6.5.2
Ebuild name:

kde-plasma/kinfocenter-6.5.2

Description

Utility providing information about the computer hardware

Added to portage

2025-11-05

kmenuedit - 6.5.2
Ebuild name:

kde-plasma/kmenuedit-6.5.2

Description

KDE Plasma menu editor

Added to portage

2025-11-05

knighttime - 6.5.2
Ebuild name:

kde-plasma/knighttime-6.5.2

Description

Helpers for scheduling the dark-light cycle

Added to portage

2025-11-05

kpipewire - 6.5.2
Ebuild name:

kde-plasma/kpipewire-6.5.2

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-11-05

krdp - 6.5.2
Ebuild name:

kde-plasma/krdp-6.5.2

Description

Library and examples for creating an RDP server

Added to portage

2025-11-05

kscreen - 6.5.2
Ebuild name:

kde-plasma/kscreen-6.5.2

Description

KDE Plasma screen management

Added to portage

2025-11-05

kscreenlocker - 6.5.2
Ebuild name:

kde-plasma/kscreenlocker-6.5.2

Description

Library and components for secure lock screen architecture

Added to portage

2025-11-05

ksshaskpass - 6.5.2
Ebuild name:

kde-plasma/ksshaskpass-6.5.2

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-11-05

ksystemstats - 6.5.2
Ebuild name:

kde-plasma/ksystemstats-6.5.2

Description

Plugin-based system monitoring daemon

Added to portage

2025-11-05

kubelogin - 1.34.2
Ebuild name:

sys-cluster/kubelogin-1.34.2

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2025-11-05

kubeseal - 0.32.2
Ebuild name:

sys-cluster/kubeseal-0.32.2

Description

Client-side utility for one-way encrypted secrets in kubernetes

Added to portage

2025-11-05

kwallet-pam - 6.5.2
Ebuild name:

kde-plasma/kwallet-pam-6.5.2

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-11-05

kwayland - 6.5.2
Ebuild name:

kde-plasma/kwayland-6.5.2

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-11-05

kwayland-integration - 6.5.2
Ebuild name:

kde-plasma/kwayland-integration-6.5.2

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-11-05

kwin - 6.5.2
Ebuild name:

kde-plasma/kwin-6.5.2

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-11-05

kwin-x11 - 6.5.2
Ebuild name:

kde-plasma/kwin-x11-6.5.2

Description

Flexible, composited X window manager

Added to portage

2025-11-05

kwrited - 6.5.2
Ebuild name:

kde-plasma/kwrited-6.5.2

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-11-05

layer-shell-qt - 6.5.2
Ebuild name:

kde-plasma/layer-shell-qt-6.5.2

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2025-11-05

libclc - 21.1.5
Ebuild name:

llvm-core/libclc-21.1.5

Description

OpenCL C library

Added to portage

2025-11-05

libcxx - 21.1.5
Ebuild name:

llvm-runtimes/libcxx-21.1.5

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2025-11-05

libcxxabi - 21.1.5
Ebuild name:

llvm-runtimes/libcxxabi-21.1.5

Description

Low level support for a standard C++ library

Added to portage

2025-11-05

libffado - 2.4.9
Ebuild name:

media-libs/libffado-2.4.9

Description

Driver for IEEE1394 (Firewire) audio interfaces

Added to portage

2025-11-05

libgcc - 21.1.5
Ebuild name:

llvm-runtimes/libgcc-21.1.5

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-11-05

libkscreen - 6.5.2
Ebuild name:

kde-plasma/libkscreen-6.5.2

Description

Plasma screen management library

Added to portage

2025-11-05

libksysguard - 6.5.2
Ebuild name:

kde-plasma/libksysguard-6.5.2

Description

Task management and system monitoring library

Added to portage

2025-11-05

libnvme - 1.16
Ebuild name:

sys-libs/libnvme-1.16

Description

C Library for NVM Express on Linux

Added to portage

2025-11-05

libplasma - 6.5.2
Ebuild name:

kde-plasma/libplasma-6.5.2

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-11-05

libunwind - 21.1.5
Ebuild name:

llvm-runtimes/libunwind-21.1.5

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-11-05

libva-intel-media-driver - 25.4.3
Ebuild name:

media-libs/libva-intel-media-driver-25.4.3

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2025-11-05

lit - 21.1.5
Ebuild name:

dev-python/lit-21.1.5

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-11-05

lld - 21.1.5
Ebuild name:

llvm-core/lld-21.1.5

Description

The LLVM linker (link editor)

Added to portage

2025-11-05

lldb - 21.1.5
Ebuild name:

llvm-core/lldb-21.1.5

Description

The LLVM debugger

Added to portage

2025-11-05

llvm - 21.1.5
Ebuild name:

dev-ml/llvm-21.1.5

Description

OCaml bindings for LLVM

Added to portage

2025-11-05

llvm - 21.1.5
Ebuild name:

llvm-core/llvm-21.1.5

Description

Low Level Virtual Machine

Added to portage

2025-11-05

llvm-common - 21.1.5
Ebuild name:

llvm-core/llvm-common-21.1.5

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-11-05

milou - 6.5.2
Ebuild name:

kde-plasma/milou-6.5.2

Description

Dedicated search application built on top of Baloo

Added to portage

2025-11-05

miniflux - 2.2.14
Ebuild name:

www-apps/miniflux-2.2.14

Description

Minimalist and opinionated feed reader

Added to portage

2025-11-05

mlir - 21.1.5
Ebuild name:

llvm-core/mlir-21.1.5

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-11-05

murmur - 1.6.0_pre20250920-r1
Ebuild name:

net-voip/murmur-1.6.0_pre20250920-r1

Description

Mumble is an open source, low-latency, high quality voice chat

Added to portage

2025-11-05

mutt - 2.2.15-r1
Ebuild name:

mail-client/mutt-2.2.15-r1

Description

A small but very powerful text-based mail client

Added to portage

2025-11-05

narwhals - 2.10.2
Ebuild name:

dev-python/narwhals-2.10.2

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-11-05

nbxmpp - 6.4.0
Ebuild name:

dev-python/nbxmpp-6.4.0

Description

Python library to use Jabber/XMPP networks in a non-blocking way

Added to portage

2025-11-05

ncdu - 2.9.2
Ebuild name:

sys-fs/ncdu-2.9.2

Description

NCurses Disk Usage

Added to portage

2025-11-05

nvme-cli - 2.16
Ebuild name:

sys-apps/nvme-cli-2.16

Description

NVM-Express user space tooling for Linux

Added to portage

2025-11-05

ocean-sound-theme - 6.5.2
Ebuild name:

kde-plasma/ocean-sound-theme-6.5.2

Description

Ocean Sound Theme for Plasma

Added to portage

2025-11-05

offload - 21.1.5
Ebuild name:

llvm-runtimes/offload-21.1.5

Description

OpenMP offloading support

Added to portage

2025-11-05

openmp - 21.1.5
Ebuild name:

llvm-runtimes/openmp-21.1.5

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-11-05

oxygen - 6.5.2
Ebuild name:

kde-plasma/oxygen-6.5.2

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-11-05

oxygen-sounds - 6.5.2
Ebuild name:

kde-plasma/oxygen-sounds-6.5.2

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-11-05

pkg-info - 0.6
Ebuild name:

app-emacs/pkg-info-0.6

Description

Provide information about Emacs packages

Added to portage

2025-11-05

planner - 3.42-r1
Ebuild name:

app-emacs/planner-3.42-r1

Description

Maintain a local Wiki using Emacs-friendly markup

Added to portage

2025-11-05

plasma-activities - 6.5.2
Ebuild name:

kde-plasma/plasma-activities-6.5.2

Description

Core components for KDE's Activities System

Added to portage

2025-11-05

plasma-activities-stats - 6.5.2
Ebuild name:

kde-plasma/plasma-activities-stats-6.5.2

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-11-05

plasma-browser-integration - 6.5.2
Ebuild name:

kde-plasma/plasma-browser-integration-6.5.2

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-11-05

plasma-desktop - 6.5.2
Ebuild name:

kde-plasma/plasma-desktop-6.5.2

Description

KDE Plasma desktop

Added to portage

2025-11-05

plasma-disks - 6.5.2
Ebuild name:

kde-plasma/plasma-disks-6.5.2

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2025-11-05

plasma-firewall - 6.5.2
Ebuild name:

kde-plasma/plasma-firewall-6.5.2

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-11-05

plasma-integration - 6.5.2
Ebuild name:

kde-plasma/plasma-integration-6.5.2

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-11-05

plasma-login-sessions - 6.5.2
Ebuild name:

kde-plasma/plasma-login-sessions-6.5.2

Description

KDE Plasma login sessions

Added to portage

2025-11-05

plasma-meta - 6.5.2
Ebuild name:

kde-plasma/plasma-meta-6.5.2

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-11-05

plasma-nm - 6.5.2
Ebuild name:

kde-plasma/plasma-nm-6.5.2

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-11-05

plasma-pa - 6.5.2
Ebuild name:

kde-plasma/plasma-pa-6.5.2

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2025-11-05

plasma-sdk - 6.5.2
Ebuild name:

kde-plasma/plasma-sdk-6.5.2

Description

Useful applications for Plasma development

Added to portage

2025-11-05

plasma-systemmonitor - 6.5.2
Ebuild name:

kde-plasma/plasma-systemmonitor-6.5.2

Description

Monitor system sensors, process information and other system

Added to portage

2025-11-05

plasma-thunderbolt - 6.5.2
Ebuild name:

kde-plasma/plasma-thunderbolt-6.5.2

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2025-11-05

plasma-vault - 6.5.2
Ebuild name:

kde-plasma/plasma-vault-6.5.2

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2025-11-05

plasma-welcome - 6.5.2
Ebuild name:

kde-plasma/plasma-welcome-6.5.2

Description

Friendly onboarding wizard for Plasma

Added to portage

2025-11-05

plasma-workspace - 6.5.2
Ebuild name:

kde-plasma/plasma-workspace-6.5.2

Description

KDE Plasma workspace

Added to portage

2025-11-05

plasma-workspace-wallpapers - 6.5.2
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.5.2

Description

Wallpapers for the Plasma workspace

Added to portage

2025-11-05

plasma5support - 6.5.2
Ebuild name:

kde-plasma/plasma5support-6.5.2

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2025-11-05

plotly - 6.4.0
Ebuild name:

dev-python/plotly-6.4.0

Description

Browser-based graphing library for Python

Added to portage

2025-11-05

plymouth-kcm - 6.5.2
Ebuild name:

kde-plasma/plymouth-kcm-6.5.2

Description

KDE Plasma control module for Plymouth

Added to portage

2025-11-05

plz - 0.7.2
Ebuild name:

app-emacs/plz-0.7.2

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-11-05

plz - 0.9.1
Ebuild name:

app-emacs/plz-0.9.1

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-11-05

po-mode - 0.22
Ebuild name:

app-emacs/po-mode-0.22

Description

Major mode for GNU gettext PO files

Added to portage

2025-11-05

po-mode - 0.26
Ebuild name:

app-emacs/po-mode-0.26

Description

Major mode for GNU gettext PO files

Added to portage

2025-11-05

poke - 3.0
Ebuild name:

app-emacs/poke-3.0

Description

Emacs meets GNU poke

Added to portage

2025-11-05

poke - 3.2
Ebuild name:

app-emacs/poke-3.2

Description

Emacs meets GNU poke

Added to portage

2025-11-05

poke-mode - 3.0
Ebuild name:

app-emacs/poke-mode-3.0

Description

Major mode for editing Poke programs

Added to portage

2025-11-05

polkit-kde-agent - 6.5.2
Ebuild name:

kde-plasma/polkit-kde-agent-6.5.2

Description

PolKit agent module for KDE Plasma

Added to portage

2025-11-05

polly - 21.1.5
Ebuild name:

llvm-core/polly-21.1.5

Description

Polyhedral optimizations for LLVM

Added to portage

2025-11-05

polymode - 0.2.2_p20220322
Ebuild name:

app-emacs/polymode-0.2.2_p20220322

Description

Framework for Multiple Major Modes in Emacs

Added to portage

2025-11-05

powerdevil - 6.5.2
Ebuild name:

kde-plasma/powerdevil-6.5.2

Description

Power management for KDE Plasma Shell

Added to portage

2025-11-05

print-manager - 6.5.2
Ebuild name:

kde-plasma/print-manager-6.5.2

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2025-11-05

protobuf - 33.0
Ebuild name:

dev-libs/protobuf-33.0

Description

Google's Protocol Buffers - Extensible mechanism for serializing structured

Added to portage

2025-11-05

pyfakefs - 5.10.2
Ebuild name:

dev-python/pyfakefs-5.10.2

Description

A fake file system that mocks the Python file system modules

Added to portage

2025-11-05

pyicu - 2.16
Ebuild name:

dev-python/pyicu-2.16

Description

Python bindings for dev-libs/icu

Added to portage

2025-11-05

python - 0.3.14.0_p1
Ebuild name:

dev-lang/python-0.3.14.0_p1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-11-05

python - 3.14.0_p1
Ebuild name:

dev-lang/python-3.14.0_p1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-11-05

python-tests - 0.3.14.0_p1
Ebuild name:

dev-python/python-tests-0.3.14.0_p1

Description

Test modules from dev-lang/python

Added to portage

2025-11-05

python-tests - 3.14.0_p1
Ebuild name:

dev-python/python-tests-3.14.0_p1

Description

Test modules from dev-lang/python

Added to portage

2025-11-05

qqc2-breeze-style - 6.5.2
Ebuild name:

kde-plasma/qqc2-breeze-style-6.5.2

Description

Breeze inspired QQC2 Style

Added to portage

2025-11-05

roundcube - 1.6.7-r1
Ebuild name:

mail-client/roundcube-1.6.7-r1

Description

A browser-based multilingual IMAP client with an application-like us

Added to portage

2025-11-05

sddm-kcm - 6.5.2
Ebuild name:

kde-plasma/sddm-kcm-6.5.2

Description

KDE Plasma control module for SDDM

Added to portage

2025-11-05

seamonkey - 2.53.22
Ebuild name:

www-client/seamonkey-2.53.22

Description

Seamonkey Web Browser

Added to portage

2025-11-05

simdjson - 4.2.1
Ebuild name:

dev-libs/simdjson-4.2.1

Description

SIMD accelerated C++ JSON library

Added to portage

2025-11-05

sonarr-bin - 4.0.16.2944
Ebuild name:

www-apps/sonarr-bin-4.0.16.2944

Description

Sonarr is a Smart PVR for newsgroup and bittorrent users

Added to portage

2025-11-05

spectacle - 6.5.2
Ebuild name:

kde-plasma/spectacle-6.5.2

Description

Screenshot capture utility

Added to portage

2025-11-05

sqlite - 3.51.0
Ebuild name:

dev-db/sqlite-3.51.0

Description

SQL database engine

Added to portage

2025-11-05

stig - 0.14.0a_p0
Ebuild name:

net-p2p/stig-0.14.0a_p0

Description

TUI and CLI for the BitTorrent client Transmission

Added to portage

2025-11-05

stripe - 13.1.2
Ebuild name:

dev-python/stripe-13.1.2

Description

Stripe Python bindings

Added to portage

2025-11-05

syncthing - 2.0.11
Ebuild name:

net-p2p/syncthing-2.0.11

Description

Open Source Continuous File Synchronization

Added to portage

2025-11-05

systemsettings - 6.5.2
Ebuild name:

kde-plasma/systemsettings-6.5.2

Description

Control Center to configure KDE Plasma desktop

Added to portage

2025-11-05

tbb - 2022.3.0
Ebuild name:

dev-cpp/tbb-2022.3.0

Description

High level abstract threading library

Added to portage

2025-11-05

tmuxp - 1.56.0
Ebuild name:

app-misc/tmuxp-1.56.0

Description

tmux session manager. built on libtmux

Added to portage

2025-11-05

torchvision - 0.23.0
Ebuild name:

sci-ml/torchvision-0.23.0

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2025-11-05

torchvision - 0.24.0
Ebuild name:

sci-ml/torchvision-0.24.0

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2025-11-05

uwsm - 0.24.2
Ebuild name:

gui-apps/uwsm-0.24.2

Description

Universal Wayland Session Manager

Added to portage

2025-11-05

virtctl - 1.6.2
Ebuild name:

sys-cluster/virtctl-1.6.2

Description

Control virtual machine related operations on your kubernetes cluster

Added to portage

2025-11-05

virtualenv - 20.34.0-r1
Ebuild name:

dev-python/virtualenv-20.34.0-r1

Description

Virtual Python Environment builder

Added to portage

2025-11-05

virtualenv - 20.35.3-r1
Ebuild name:

dev-python/virtualenv-20.35.3-r1

Description

Virtual Python Environment builder

Added to portage

2025-11-05

virtualenv - 20.35.4-r1
Ebuild name:

dev-python/virtualenv-20.35.4-r1

Description

Virtual Python Environment builder

Added to portage

2025-11-05

wacomtablet - 6.5.2
Ebuild name:

kde-plasma/wacomtablet-6.5.2

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2025-11-05

with-editor - 3.4.7
Ebuild name:

app-emacs/with-editor-3.4.7

Description

Use the Emacsclient as the of child processes

Added to portage

2025-11-05

xdg-desktop-portal-kde - 6.5.2
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.5.2

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2025-11-05

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 66.6 ms